home *** CD-ROM | disk | FTP | other *** search
/ Borland JBuilder 6 / jbuilder6.iso / Easy Applet Builder v1.7 / _SETUP.1 / CyclingColorsText.class (.txt) < prev    next >
Encoding:
Java Class File  |  2001-11-06  |  9.4 KB  |  415 lines

  1. import java.applet.Applet;
  2. import java.applet.AudioClip;
  3. import java.awt.Color;
  4. import java.awt.Component;
  5. import java.awt.Cursor;
  6. import java.awt.Font;
  7. import java.awt.FontMetrics;
  8. import java.awt.Graphics;
  9. import java.awt.Image;
  10. import java.awt.MediaTracker;
  11. import java.awt.event.MouseEvent;
  12. import java.awt.event.MouseListener;
  13. import java.net.MalformedURLException;
  14. import java.net.URL;
  15. import java.net.URLEncoder;
  16.  
  17. public class CyclingColorsText extends Applet implements Runnable, MouseListener {
  18.    private Thread thread;
  19.    // $FF: renamed from: b java.awt.Graphics
  20.    private Graphics field_0;
  21.    private Image buffer;
  22.    private Image backImage;
  23.    private boolean loaded = false;
  24.    // $FF: renamed from: wi int
  25.    private int field_1;
  26.    // $FF: renamed from: he int
  27.    private int field_2;
  28.    private int decy;
  29.    private int decx;
  30.    private int text_height;
  31.    private int string_width;
  32.    private String text;
  33.    private Color backColor;
  34.    // $FF: renamed from: fm java.awt.FontMetrics
  35.    private FontMetrics field_3;
  36.    private Color enterBackColor;
  37.    private AudioClip sound;
  38.    private AudioClip clicSound;
  39.    private AudioClip enterSound;
  40.    private boolean loopSound;
  41.    private String link;
  42.    private String statusBarText;
  43.    private int wiBack;
  44.    private int heBack;
  45.    private int pause;
  46.    private final Color[] colors;
  47.    private int dec;
  48.  
  49.    public String getAppletInfo() {
  50.       return "Name: CyclingColorsText\r\nAuthor: Taiji Software\r\n";
  51.    }
  52.  
  53.    public CyclingColorsText() {
  54.       this.colors = new Color[]{Color.black, Color.blue, Color.cyan, Color.darkGray, Color.gray, Color.green, Color.lightGray, Color.magenta, Color.orange, Color.pink, Color.red, Color.white, Color.yellow};
  55.       this.text_height = 10;
  56.       this.decx = 0;
  57.       this.decy = 0;
  58.       this.pause = 100;
  59.       ((Component)this).addMouseListener(this);
  60.    }
  61.  
  62.    public void register() {
  63.       try {
  64.          URL u = new URL("http://www.taijisoftware.com");
  65.          ((Applet)this).getAppletContext().showDocument(u, "_blank");
  66.          this.stop();
  67.       } catch (Exception e) {
  68.          System.out.println(e);
  69.          this.stop();
  70.       }
  71.    }
  72.  
  73.    public void init() {
  74.       String codeBase = null;
  75.  
  76.       try {
  77.          codeBase = (new URL(((Applet)this).getCodeBase().toString())).getHost();
  78.          System.out.println("Copyright 1999, 2001 Taiji Software(tm)\nYour domain name is : " + codeBase);
  79.          codeBase = codeBase.toUpperCase();
  80.       } catch (Exception var9) {
  81.       }
  82.  
  83.       if (!((Applet)this).getCodeBase().toString().toUpperCase().startsWith("FILE") || ((Applet)this).getParameter("debug") != null) {
  84.          String regCode = ((Applet)this).getParameter("registration_code");
  85.          if (regCode == null) {
  86.             regCode = ((Applet)this).getParameter("reg_domain");
  87.             if (regCode == null) {
  88.                this.register();
  89.             } else {
  90.                if (regCode.length() == codeBase.length() + 4 && !codeBase.startsWith("WWW.")) {
  91.                   codeBase = "WWW." + codeBase;
  92.                } else if (regCode.length() == codeBase.length() - 4 && codeBase.startsWith("WWW.")) {
  93.                   codeBase = codeBase.substring(4);
  94.                }
  95.  
  96.                char[] chars = new char[codeBase.length()];
  97.                codeBase.getChars(0, codeBase.length(), chars, 0);
  98.                String key = new String("haricot");
  99.                char[] chars2 = new char[key.length()];
  100.                key.getChars(0, key.length(), chars2, 0);
  101.  
  102.                for(int i = 0; i < codeBase.length(); ++i) {
  103.                   int j;
  104.                   if (i >= key.length()) {
  105.                      j = i - key.length() * (i / key.length());
  106.                   } else {
  107.                      j = i;
  108.                   }
  109.  
  110.                   chars[i] += chars2[j];
  111.                   chars[i] = (char)(chars[i] - chars[i] / 26 * 26 + 97);
  112.                }
  113.  
  114.                String res = new String(chars);
  115.                if (!res.equalsIgnoreCase(regCode)) {
  116.                   this.register();
  117.                }
  118.             }
  119.          } else if (!regCode.equals("settevercsedegnamiaj") && !regCode.equals("8078")) {
  120.             this.register();
  121.          }
  122.       }
  123.  
  124.       this.getParameters();
  125.       if (this.sound != null) {
  126.          if (this.loopSound) {
  127.             this.sound.loop();
  128.             return;
  129.          }
  130.  
  131.          this.sound.play();
  132.       }
  133.  
  134.    }
  135.  
  136.    public void getParameters() {
  137.       this.field_1 = ((Component)this).getSize().width;
  138.       this.field_2 = ((Component)this).getSize().height;
  139.       String s = ((Applet)this).getParameter("pause");
  140.       if (s != null) {
  141.          this.pause = Integer.parseInt(s);
  142.       }
  143.  
  144.       this.text = ((Applet)this).getParameter("text");
  145.       if (this.text == null) {
  146.          this.text = "No text !";
  147.       }
  148.  
  149.       this.backColor = this.getColor("background_color");
  150.       ((Component)this).setBackground(this.backColor);
  151.       this.enterBackColor = this.getColor("enter_background_color");
  152.       s = ((Applet)this).getParameter("text_height");
  153.       if (s != null) {
  154.          this.text_height = Integer.parseInt(s);
  155.       }
  156.  
  157.       s = ((Applet)this).getParameter("height_shift");
  158.       if (s != null) {
  159.          this.decy = Integer.parseInt(s);
  160.       }
  161.  
  162.       s = ((Applet)this).getParameter("width_shift");
  163.       if (s != null) {
  164.          this.decx = Integer.parseInt(s);
  165.       }
  166.  
  167.       this.statusBarText = ((Applet)this).getParameter("status_bar_text");
  168.       s = ((Applet)this).getParameter("sound_name");
  169.       if (s != null) {
  170.          this.sound = ((Applet)this).getAudioClip(((Applet)this).getCodeBase(), s);
  171.       }
  172.  
  173.       s = ((Applet)this).getParameter("loop_sound");
  174.       if (s != null) {
  175.          if (s.equals("yes")) {
  176.             this.loopSound = true;
  177.          } else {
  178.             this.loopSound = false;
  179.          }
  180.       }
  181.  
  182.       s = ((Applet)this).getParameter("clic_sound_name");
  183.       if (s != null) {
  184.          this.clicSound = ((Applet)this).getAudioClip(((Applet)this).getCodeBase(), s);
  185.       }
  186.  
  187.       s = ((Applet)this).getParameter("enter_sound_name");
  188.       if (s != null) {
  189.          this.enterSound = ((Applet)this).getAudioClip(((Applet)this).getCodeBase(), s);
  190.       }
  191.  
  192.       this.link = ((Applet)this).getParameter("link");
  193.    }
  194.  
  195.    public Color getColor(String param) {
  196.       String s = ((Applet)this).getParameter(param);
  197.       if (s != null) {
  198.          if (s.substring(0, 1).equals("#")) {
  199.             s = s.substring(1);
  200.             int i = Integer.parseInt(s, 16);
  201.             return new Color(i);
  202.          } else {
  203.             return null;
  204.          }
  205.       } else {
  206.          return null;
  207.       }
  208.    }
  209.  
  210.    public final void paint(Graphics g) {
  211.       if (this.loaded) {
  212.          this.field_0.clearRect(0, 0, this.field_1, this.field_2);
  213.          if (this.backImage != null) {
  214.             this.field_0.drawImage(this.backImage, (this.field_1 - this.wiBack) / 2, (this.field_2 - this.heBack) / 2, this);
  215.          }
  216.  
  217.          int x = 0;
  218.  
  219.          for(int i = 0; i < this.text.length(); ++i) {
  220.             this.field_0.setColor(this.colors[(i + this.dec) % 13]);
  221.             this.field_0.drawString(this.text.substring(i, i + 1), this.decx + x, this.text_height + this.decy);
  222.             x += this.field_3.charWidth(this.text.charAt(i));
  223.          }
  224.  
  225.          g.drawImage(this.buffer, 0, 0, this);
  226.       }
  227.  
  228.    }
  229.  
  230.    public final void update(Graphics g) {
  231.       this.paint(g);
  232.    }
  233.  
  234.    public void start() {
  235.       if (this.thread == null) {
  236.          this.thread = new Thread(this);
  237.          this.thread.start();
  238.       }
  239.  
  240.    }
  241.  
  242.    public void stop() {
  243.       if (this.thread != null) {
  244.          this.thread = null;
  245.       }
  246.  
  247.       if (this.sound != null) {
  248.          this.sound.stop();
  249.       }
  250.  
  251.    }
  252.  
  253.    public final void run() {
  254.       if (!this.loaded) {
  255.          String s = ((Applet)this).getParameter("background_image");
  256.          if (s != null) {
  257.             MediaTracker tracker = new MediaTracker(this);
  258.             this.backImage = ((Applet)this).getImage(((Applet)this).getCodeBase(), s);
  259.             tracker.addImage(this.backImage, 0);
  260.  
  261.             try {
  262.                tracker.waitForAll();
  263.                this.loaded = !tracker.isErrorAny();
  264.             } catch (InterruptedException var5) {
  265.                this.stop();
  266.             }
  267.  
  268.             if (!this.loaded) {
  269.                this.stop();
  270.                return;
  271.             }
  272.          }
  273.  
  274.          this.buffer = ((Component)this).createImage(this.field_1, this.field_2);
  275.          this.field_0 = this.buffer.getGraphics();
  276.          String fontName = ((Applet)this).getParameter("text_font");
  277.          System.out.println(fontName);
  278.          if (fontName == null) {
  279.             fontName = "TimesRoman";
  280.          }
  281.  
  282.          int style = 1;
  283.          s = ((Applet)this).getParameter("text_style");
  284.          if (s != null) {
  285.             if (s.equals("bold")) {
  286.                style = 1;
  287.             } else if (s.equals("italic")) {
  288.                style = 2;
  289.             } else if (s.equals("bold_italic")) {
  290.                style = 3;
  291.             } else {
  292.                style = 0;
  293.             }
  294.          }
  295.  
  296.          this.field_0.setFont(new Font(fontName, style, this.text_height));
  297.          this.field_3 = this.field_0.getFontMetrics();
  298.          this.string_width = this.field_3.stringWidth(this.text);
  299.          if (this.backImage != null) {
  300.             this.wiBack = this.backImage.getWidth(this);
  301.             this.heBack = this.backImage.getHeight(this);
  302.          }
  303.  
  304.          if (this.decx == 0) {
  305.             this.decx = (this.field_1 - this.string_width) / 2;
  306.          }
  307.  
  308.          if (this.decy == 0) {
  309.             this.decy = (this.field_2 + this.field_3.getMaxAscent() - this.field_3.getMaxDescent()) / 2 - this.text_height;
  310.          }
  311.  
  312.          this.field_0.setColor(Color.black);
  313.          this.loaded = true;
  314.       }
  315.  
  316.       this.dec = 0;
  317.  
  318.       while(true) {
  319.          ((Component)this).repaint();
  320.          --this.dec;
  321.          if (this.dec < 0) {
  322.             this.dec = this.colors.length - 1;
  323.          }
  324.  
  325.          try {
  326.             Thread.sleep((long)this.pause);
  327.          } catch (InterruptedException e) {
  328.             System.err.println(e);
  329.             this.stop();
  330.          }
  331.       }
  332.    }
  333.  
  334.    public URL giveURL(String url) {
  335.       try {
  336.          if (url.toUpperCase().startsWith("HTTP")) {
  337.             return new URL(url);
  338.          } else if (url.toUpperCase().startsWith("FTP")) {
  339.             int p = url.indexOf(":");
  340.             int p2 = url.indexOf(":", p + 1);
  341.             if (p2 != -1) {
  342.                url = url.substring(0, p + 3) + URLEncoder.encode(url.substring(p + 3, url.length()));
  343.             }
  344.  
  345.             p = url.indexOf("%40");
  346.             if (p != -1) {
  347.                url = url.substring(0, p) + "@" + url.substring(p + 3, url.length());
  348.             }
  349.  
  350.             return new URL(url);
  351.          } else {
  352.             return new URL(((Applet)this).getCodeBase(), url);
  353.          }
  354.       } catch (MalformedURLException e) {
  355.          System.out.println(e);
  356.          return null;
  357.       }
  358.    }
  359.  
  360.    public void mouseClicked(MouseEvent e) {
  361.    }
  362.  
  363.    public void mouseEntered(MouseEvent e) {
  364.       if (this.enterBackColor != null) {
  365.          ((Component)this).setBackground(this.enterBackColor);
  366.          ((Component)this).repaint();
  367.       }
  368.  
  369.       if (this.statusBarText != null) {
  370.          ((Applet)this).showStatus(this.statusBarText);
  371.       }
  372.  
  373.       if (this.enterSound != null) {
  374.          this.enterSound.play();
  375.       }
  376.  
  377.       if (this.link != null) {
  378.          ((Component)this).setCursor(new Cursor(12));
  379.       }
  380.  
  381.    }
  382.  
  383.    public void mouseExited(MouseEvent e) {
  384.       if (this.enterBackColor != null) {
  385.          ((Component)this).setBackground(this.backColor);
  386.          ((Component)this).repaint();
  387.       }
  388.  
  389.       if (this.link != null) {
  390.          ((Component)this).setCursor(new Cursor(0));
  391.       }
  392.  
  393.    }
  394.  
  395.    public void mousePressed(MouseEvent e) {
  396.       if (this.clicSound != null) {
  397.          this.clicSound.play();
  398.       }
  399.  
  400.       if (this.link != null) {
  401.          String target = ((Applet)this).getParameter("target");
  402.          if (target == null) {
  403.             target = "_blank";
  404.          }
  405.  
  406.          URL u = this.giveURL(this.link);
  407.          ((Applet)this).getAppletContext().showDocument(u, target);
  408.       }
  409.  
  410.    }
  411.  
  412.    public void mouseReleased(MouseEvent e) {
  413.    }
  414. }
  415.